home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garden Fax: Indoor Plants
/
Garden Fax - Indoor Plants (1991)(CDTV Publishing)[!].iso
/
system
/
basicdemos
/
terminal
(
.txt
)
< prev
Wrap
AmigaBASIC Source Code
|
1991-04-17
|
274b
|
16 lines
REM - Terminal - simple terminal
REM - emulation program which demonstrates
REM - how to access the Amiga RS-232
REM - port from BASIC
OPEN "com1:9600,n,8,1" AS 1
WHILE 1
WHILE LOC(1)<>0
PRINT INPUT$(1,1);
WEND
i$=INKEY$
IF i$<>"" THEN PRINT #1,i$;
WEND